home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / sunclock / Makefile.ODT < prev    next >
Makefile  |  1995-05-25  |  690b  |  32 lines

  1. #
  2. # Compile options:
  3. #
  4. # Set -DSYSV if on System V
  5. # Set -DNEW_CTIME if using the table-driven version of ctime (i.e., if
  6. #   your struct tm contains a tm_zone field)
  7. # Set -DBIGFONT= and -DSMALLFONT= whatever fonts you like
  8. # Pick -O or -g
  9. #
  10.  
  11. CFLAGS=-nointl -DBIGFONT=\"9x15\" -DSMALLFONT=\"6x10\" -O -DSYSV
  12.  
  13. OFILES=sunclock.o bitmaps.o astro.o
  14.  
  15. all:    sunclock sunclock.doc
  16.  
  17. cp install:    all
  18.     -mkdir $(ROOT)/usr/games/X/doc
  19.     cp sunclock $(ROOT)/usr/games/X/sunclock
  20.     cp sunclock.doc $(ROOT)/usr/games/X/doc/sunclock
  21.     -chmod 644 $(ROOT)/usr/games/X/doc/sunclock
  22.  
  23. clean:
  24.     rm -f *.o
  25.  
  26. clobber:    clean
  27.     rm -f sunclock
  28.  
  29. sunclock: $(OFILES)
  30.     cc $(CFLAGS) $(OFILES) -o $@ -lX11 -lm -lsocket -lnsl_s
  31.  
  32.